increase the size of an image on hover using css

322

.grow { 
	transition: all .2s ease-in-out; 
}
	.grow:hover { 
    	transform: scale(1.1); 
    }

Comments

Submit
0 Comments